home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / misc / xref_v1.1.lha / XRef / Tools / source / Def.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-09  |  2.5 KB  |  115 lines

  1. /*
  2. ** $PROJECT: XRef-Tools
  3. **
  4. ** $VER: Def.h 1.1 (04.09.94)
  5. **
  6. ** by
  7. **
  8. ** Stefan Ruppert , Windthorststraße 5 , 65439 Flörsheim , GERMANY
  9. **
  10. ** (C) Copyright 1994
  11. ** All Rights Reserved !
  12. **
  13. ** $HISTORY:
  14. **
  15. ** 04.09.94 : 001.001 :  initial
  16. */
  17.  
  18. /* --------------------------- system include's --------------------------- */
  19.  
  20. #define INTUITION_IOBSOLETE_H           TRUE
  21.  
  22. #include <string.h>
  23. #include <ctype.h>
  24.  
  25. #include <exec/types.h>
  26. #include <exec/memory.h>
  27.  
  28. #include <utility/tagitem.h>
  29. #include <utility/hooks.h>
  30.  
  31. /* workbench include's */
  32.  
  33. #include <workbench/startup.h>
  34. #include <workbench/workbench.h>
  35. #include <workbench/icon.h>
  36.  
  37. /* graphics include's */
  38.  
  39. #include <graphics/rastport.h>
  40. #include <graphics/text.h>
  41. #include <graphics/gfxmacros.h>
  42.  
  43. /* intuition include's */
  44.  
  45. #include <intuition/intuition.h>
  46. #include <intuition/classusr.h>
  47. #include <intuition/classes.h>
  48. #include <intuition/gadgetclass.h>
  49. #include <intuition/imageclass.h>
  50. #include <intuition/pointerclass.h>
  51. #include <intuition/icclass.h>
  52. #include <intuition/cghooks.h>
  53. #include <intuition/sghooks.h>
  54.  
  55. /* libraries include's */
  56.  
  57. #include <libraries/amigaguide.h>
  58. #include <libraries/asl.h>
  59. #include <libraries/commodities.h>
  60. #include <libraries/gadtools.h>
  61. #include <libraries/iffparse.h>
  62. #include <libraries/locale.h>
  63.  
  64. /* dos include's */
  65.  
  66. #include <dos/dostags.h>
  67. #include <dos/dos.h>
  68. #include <dos/dosextens.h>
  69. #include <dos/exall.h>
  70.  
  71. /* diskfont include's */
  72.  
  73. #include <diskfont/diskfont.h>
  74.  
  75. /* prototype include's */
  76.  
  77. #include <clib/alib_protos.h>
  78. #include <clib/alib_stdio_protos.h>
  79. #include <clib/amigaguide_protos.h>
  80. #include <clib/asl_protos.h>
  81. #include <clib/commodities_protos.h>
  82. #include <clib/console_protos.h>
  83. #include <clib/diskfont_protos.h>
  84. #include <clib/dos_protos.h>
  85. #include <clib/exec_protos.h>
  86. #include <clib/gadtools_protos.h>
  87. #include <clib/graphics_protos.h>
  88. #include <clib/icon_protos.h>
  89. #include <clib/iffparse_protos.h>
  90. #include <clib/input_protos.h>
  91. #include <clib/intuition_protos.h>
  92. #include <clib/layers_protos.h>
  93. #include <clib/locale_protos.h>
  94. #include <clib/macros.h>
  95. #include <clib/timer_protos.h>
  96. #include <clib/utility_protos.h>
  97. #include <clib/wb_protos.h>
  98.  
  99. #ifndef _DCC
  100. #include <proto/all.h>
  101. #endif
  102.  
  103. /* ---------------------------- xref include's ---------------------------- */
  104.  
  105. #include <libraries/xref.h>
  106. #include <proto/xref.h>
  107.  
  108. /* ---------------------------- other includes ---------------------------- */
  109.  
  110. #include "//Goodies/extrdargs/extrdargs.h"
  111.  
  112. #include "//myinclude/register.h"
  113. #include "//myinclude/debug.h"
  114.  
  115.